1.1.6.11. security.insecureAPI.strcpy (C)
Warn on uses of the strcpy and strcat functions.

Examples:

void test() {
  char x[4];
  char *y = "abcd";

  strcpy(x, y); // warn
}